ga.core.evaluation
Interface IFitnessEvaluator<T extends IIndividual<T>>

Type Parameters:
T - The generic type of the individuals.
All Known Subinterfaces:
IInteractiveFitnessEvaluator<T>
All Known Implementing Classes:
AbstractInteractiveEvaluator, AerialEvaluationState, BillardEvaluationState, StreamingEvaluationState

public interface IFitnessEvaluator<T extends IIndividual<T>>

Interface for fitness evaluators.

Since:
11.08.2012
Author:
Stephan Dreyer

Method Summary
 void evaluate(T individual)
          Evaluates the given individual.
 

Method Detail

evaluate

void evaluate(T individual)
Evaluates the given individual.

Parameters:
individual - Individual to evaluate.
Since:
11.08.2012